home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209b.zip / octave-2.09 / SCRIPTS.ZIP / scripts / startup / octaverc
Encoding:
Text File  |  1997-05-26  |  862 b   |  34 lines

  1. ## System-wide startup file for Octave.
  2. ##
  3. ## This file should contain any commands that should be executed each
  4. ## time Octave starts for every user at this site.
  5.  
  6. ## System-wide startup file
  7. ## Octave 2.06 for OS/2
  8. ## (c) 1996, Klaus Gebhardt
  9.  
  10. PS1 = "octave:\\#>"
  11.  
  12. EDITOR = "e";
  13.  
  14. if length(getenv("OCTAVE_HOME"))
  15.   LOADPATH = sprintf("%s/scripts//", getenv("OCTAVE_HOME"));
  16.   INFO_FILE = sprintf("%s/doc/octave", getenv("OCTAVE_HOME"));
  17. endif
  18.  
  19. if length(file_in_path(getenv("PATH"),"less.exe"))
  20.   PAGER = sprintf("%s -ce",file_in_path(getenv("PATH"),"less.exe"));
  21. else
  22.   PAGER = "more";
  23. endif
  24.  
  25. if length(getenv("GNUPLOT"))
  26.   gnuplot_binary = sprintf ("%s/gnuplot.exe", getenv("GNUPLOT"));
  27. else
  28.   gnuplot_binary = "gnuplot";
  29. endif
  30.  
  31. implicit_str_to_num_ok     = 1;
  32. ok_to_lose_imaginary_part  = 1;
  33. ignore_function_time_stamp = 1;
  34.